Mark.this

Creates a text mark.

Add it to a buffer using [method@Gtk.TextBuffer.add_mark]. If name is NULL, the mark is anonymous; otherwise, the mark can be retrieved by name using [method@Gtk.TextBuffer.get_mark]. Normally marks are created using the utility function [method@Buffer.create_source_mark].

  1. this(GtkSourceMark* gtkSourceMark, bool ownedRef)
  2. this(string name, string category)
    class Mark
    this
    (
    string name
    ,
    string category
    )

Parameters

name string

Name of the #GtkSourceMark or %NULL

category string

is used to classify marks according to common characteristics (e.g. all the marks representing a bookmark could belong to the "bookmark" category, or all the marks representing a compilation error could belong to "error" category).

Return Value

a new #GtkSourceMark that can be added using [method@Gtk.TextBuffer.add_mark].

Throws

ConstructionException GTK+ fails to create the object.

Meta